home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 6 (Reseller Edition) / Apple Ref. & Pres. Lib.v6.0.toast / mac / 3-Presentations / Apple Demos / Training / HyperCard 2.0 Training / •HC 2.0-6 / background_19420.txt < prev    next >
Text File  |  1990-04-06  |  504b  |  28 lines

  1. -- background: 19420 from stack: in.0-6
  2. -- bmap block id: 19658
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6. ----- HyperTalk script -----
  7. on closeCard
  8.   hideInfo
  9. end closeCard
  10.  
  11. on hideInfo
  12.   hideFlds (the number of cd flds - 1)
  13. end hideInfo
  14.  
  15. on hideFlds numFlds
  16.   if numFlds is empty then put 1 into numFlds
  17.   repeat with i = 1 to numFlds
  18.     hide cd fld ("Info " & i)
  19.   end repeat
  20. end hideFlds
  21.  
  22. on showFld
  23.   lock screen
  24.   send hideInfo to this cd
  25.   show cd fld the short name of the target
  26. end showFld
  27.  
  28.